home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 February / EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso / enigma / earcd / sviluppo / svilupp2 / garbage.rdm < prev    next >
Text File  |  1997-01-18  |  1KB  |  33 lines

  1. Short:    Simple Amiga resource tracking
  2. Author:   Steven Solie (Software Evolution)
  3. Uploader: ssolie@freenet.calgary.ab.ca
  4. Version:  1.0
  5. Type:     dev/misc
  6.  
  7.  
  8. The garbage collector library is a link-level library of functions designed
  9. to make resource tracking on the Amiga as easy and as powerful as possible.
  10. It is hoped that by using the garbage collector library, higher quality
  11. Amiga software can be produced with less time and effort.  It is recommended
  12. to use V37 or higher of the Amiga OS although lower versions are possible.
  13.  
  14. Unlike some other Amiga resource tracking implementations, this
  15. implementation does not patch any system functions.  Instead, it is designed
  16. to be used by the programmer and linked in with the final executable.  With
  17. this design there is an executable program size penalty which should be
  18. considered.  However, the programmer is free to trim off any code which
  19. isn't going to be used thanks to the inclusion of the complete source code.
  20.  
  21. So far, the library tracks only two system resources: libraries and memory.
  22. Keeping things as simple and extensible as possible was considered to have
  23. a higher priority than covering every system resource.  The library will
  24. expand as required over time.  It is expected that the next release will
  25. include a significant number of improvements and extensions as the library
  26. is more fully utilized.
  27.  
  28.  
  29. I hope the next release of the Amiga OS will make this type of library
  30. redundant.
  31.  
  32.   -- Steven Solie
  33.